home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / ams__l~1.zoo / etc / default.mak
Encoding:
Text File  |  1992-12-24  |  349 b   |  19 lines

  1. # .PRG, .TOS, .TTP ...
  2.  
  3. .SUFFIXES: $(SUFFIXES) .prg .tos .ttp
  4.  
  5. %.tos %.ttp %.prg: %.o
  6.     $(LINK.o) $(LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@
  7.  
  8. %.tos %.ttp %.prg: %.cc
  9.     $(LINK.cc) $(LDFLAGS) $^ $(LOADLIBES) $(LDLIBS) -o $@
  10.  
  11. #The ATARI ST department for GCC
  12. CC = gcc
  13. CCC = gcc
  14. C++ = gcc
  15. LINK = gcc
  16. LINK.o = gcc
  17. AR = gcc-ar
  18. AS = gcc-as
  19.